home *** CD-ROM | disk | FTP | other *** search
/ Zoom 2 / Zoom - Release 2 (1996)(Active Software)[!].iso / programming / amiga / cgraphx / c / examples / smakefile < prev    next >
Encoding:
Makefile  |  1995-11-27  |  469 b   |  26 lines

  1.  
  2. SCOPTS = UNSCHAR STRMERGE NOSTKCHK PARMS=REGISTER OPTIMIZE
  3.  
  4. LIBS   = LIB:cgraphx.lib LIB:sc.lib LIB:amiga.lib
  5. SLO    = SC SD ND
  6.  
  7. .c.o:
  8.     sc $*.c $(SCOPTS) OBJNAME=$@
  9.  
  10. EXAMPLES = Window ScreenModeReq
  11.  
  12. all: $(EXAMPLES)
  13.  
  14. clean:
  15.     -Delete $(EXAMPLES) \#?.(info|o) QUIET
  16.  
  17. Window: Window.o
  18.     slink FROM LIB:c.o $*.o $(SLO) LIB $(LIBS) TO $@
  19.  
  20. Window.o: Window.c
  21.  
  22. ScreenModeReq: ScreenModeReq.o
  23.     slink FROM LIB:c.o $*.o $(SLO) LIB $(LIBS) TO $@
  24.  
  25. ScreenModeReq.o: ScreenModeReq.c
  26.